home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / MODEMPRO / TELESHAR.ZIP;1 / DOCHELP@.EXE / INSTALLT.DOC < prev    next >
Encoding:
Text File  |  1993-08-10  |  12.2 KB  |  317 lines

  1.  
  2.  
  3.                The TeleShare Install manual                 Page 1
  4.  
  5.  
  6.  
  7.  
  8.  
  9.                         _______
  10.                    ____|__     |               (R)
  11.                 --|       |    |-------------------
  12.                   |   ____|__  |  Association of
  13.                   |  |       |_|  Shareware
  14.                   |__|   o   |    Professionals
  15.                 -----|   |   |---------------------
  16.                      |___|___|    Member
  17.  
  18.  
  19.  
  20.           August, 1993
  21.  
  22.  
  23.           Install  is designed to allow you to install and run programs,
  24.           demonstration programs, and maintenance software.   Of  course
  25.           its  primarily designed to install the TeleShare distribution.
  26.           However, you may use it as a general install program, to setup
  27.           software that you only use occasionally and the like, as  long
  28.           as  you  are  also  installing  TeleShare  with your software.
  29.           TeleShare install  stores  its  help  information  and  script
  30.           instructions in the INSTALL.DBF and INSTALL.DBT Xbase database
  31.           files.   You  can  edit  the  help by tapping F7 instead of F1
  32.           -Help while running install or you can start install with  the
  33.           "EDIT" command line parameter.
  34.             Install  always  looks  in  the  last  entry  for its script
  35.           instructions.  You can  take  advantage  of  this  by  putting
  36.           alternate installation sets in other dbase deleted entries and
  37.           undeleting them  for  particular  disk  distributions.   Don't
  38.           leave the last entry blank, or install will yell at you.
  39.  
  40.           Command line parameters
  41.  
  42.           INSTALL [EDIT ADD MONO]
  43.  
  44.           EDIT - to edit the script database
  45.           ADD  - to add a new entry and edit the script database.
  46.           MONO - to force monochrom screen output.
  47.  
  48.  
  49.           The install script language follows:
  50.  
  51.  
  52.           # is used for comments.  Anything to  the  right  of  a  #  is
  53.           considered a comment.
  54.  
  55.           Every TeleShare install script must start with the line.
  56.           "TELESHARE INSTALL SCRIPT"
  57.  
  58.           Otherwise  the installer might try to work over one of its own
  59.           help files, and snivel at you.
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.                The TeleShare Install manual                 Page 2
  67.  
  68.  
  69.           BROWSE somefile  to  browse  or  review  some  text  file  for
  70.           information.  It has a built-in search capability.
  71.  
  72.           CHANGEDISK  key_file To prompt to change to the next diskette,
  73.           and to check for the specified key file on the next disk.  You
  74.           can leave a space and add a message that will be displayed  in
  75.           place of  "Please  change  disks" after the key_file name.  Do
  76.           use a zero length key_file name.
  77.  
  78.           CHANGEDISK peaches.exe Please change to the red disk.
  79.  
  80.           CLEAR to clear the screen.  This version  actually  calls  the
  81.           DOS CLS to ensure that the screen color/colour matches similar
  82.           DOS related commands that you may be using in association with
  83.           it.
  84.  
  85.           COMMAND  to  directly  run  programs  and  to pass commands to
  86.           command.com.  See the RUN and SWAP commands below.
  87.  
  88.           COPY - to allow copying of materials from the source to target
  89.           disk as in:
  90.           COPY file_1 file_2 file_3 etc
  91.  
  92.           The destination is the DIRECTORY provided earlier.
  93.  
  94.  
  95.           DIRECTORY - to supply a directory name for editing.
  96.  
  97.           ECHO like  the  DOS  echo  command.    Anything  that  is  not
  98.           recognised  by  the  script  parser  is  simply  echoed to the
  99.           screen, but any spaces on the left side will be trimmed off.
  100.  
  101.           IF and END or ENDIF If is used with ADD-IN or BASIC, as in
  102.           IF  BASIC
  103.              # installation commands for the BASIC option
  104.              ...
  105.           ENDIF
  106.           IF ADD-IN
  107.              # installation commands for the ADD-IN option
  108.              ...
  109.           END
  110.           if add-in basic
  111.              # to combine the partial installation options
  112.              ...
  113.           endif
  114.  
  115.           The final "END" or "ENDIF" is an implied "QUIT", so if you use
  116.           one of the two optional partial installation  options,  ensure
  117.           that the 'right stuff' is done before the "END".
  118.  
  119.           There is  no "IF ALL" to install everything.  If the option to
  120.           install everything is chosen, any "IF BASIC"  or  "IF  ADD-IN"
  121.           instruction sets are ignored.
  122.  
  123.           INSTALL DIRECTORY \TELE\ # to specify the \TELE\ directory.
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                The TeleShare Install manual                 Page 3
  130.  
  131.  
  132.           INSTALL  HEADER  -  This  allows  you  to provide an alternate
  133.           header to replace the default message at the upper part of the
  134.           screen.  You may use up to 3 message or header lines.
  135.  
  136.           INSTALL README some_file to allow you to  use  any  file  name
  137.           instead of the default README.DOC name.  README.DOC is used in
  138.           place  of  README.1ST  to make it easier to look up a group of
  139.           manuals, ending in ".DOC", with TsPhone's browse.
  140.  
  141.           INSTALL ADD-IN or  BASIC  -  to  specify  that  the  TeleShare
  142.           distribution is  only  a  partial distribution.  The installer
  143.           defaults to asking if you want 1) A FULL  distribution  or  2)
  144.           Only  the  REMOTE  or  the  HOST (BASIC) or 3) As an ADD-IN to
  145.           another product like bitcom.  Use one of these command options
  146.           to bypass the prompting.
  147.  
  148.           QUIT - to instruct INSTALL to quit to DOS.
  149.  
  150.           QUIT_TO to  quit  and  run  another  program.    Install  uses
  151.           keyboard stuffing  to run the next program.  You may prefer to
  152.           check  that  your  target  P.C.(s)  use  compatible   keyboard
  153.           routines.
  154.  
  155.           RUN  -  to  tell  INSTALL to run the program on the same line.
  156.           For both RUN and SWAP, install looks for the file to be run in
  157.           both the source and the destination directories, and  runs  it
  158.           where  it  was  found  with  the  current  directory being the
  159.           destination directory.  This means that it  works  with  self-
  160.           extracting   archive   files   and   software  that  has  been
  161.           installed.  Use the COMMAND command to simply run programs and
  162.           to pass commands to command.com.  Use swap if you need all but
  163.           2K of memory.  The parser ignores ".COM"  files,  so  add  the
  164.           .com if you want to RUN or SWAP .com files.
  165.  
  166.           SWAP  -  to  tell INSTALL to SWAP all but 2k of itself to disk
  167.           before running the program given on the same line.
  168.  
  169.           Examples:
  170.           CLEAR
  171.           RUN  some
  172.           SWAP  bigthing # swap all but 2k of the program to disk
  173.  
  174.           WAIT to wait for the user to press a key  to  continue.    The
  175.           wait is actually a long delay.
  176.  
  177.           The  best  way  to  learn  how  to  use INSTALL is to study an
  178.           existing script in the INSTALL.DBF/DBT file. Run INSTALL  with
  179.           EDIT,  and compare its actions to the command script. Practise
  180.           with small scripts and work up.  Test your setups.
  181.  
  182.           If you use the install program  very  much  to  install  other
  183.           software,  you  will  notice  that the size of the install.dbt
  184.           file builds up.  Use  the  ITUNE.EXE  program  to  retune  the
  185.           size.  It will automatically reclaim wasted space.
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.                The TeleShare Install manual                 Page 4
  193.  
  194.  
  195.           ASP Introduction:
  196.  
  197.           Please  also  carefully  read  the  accompanying  SHARE.ASP or
  198.           SHR_WARE.DOC document.
  199.  
  200.           "This program is produced by a member of  the  Association  of
  201.           Shareware Professionals (ASP). ASP wants to make sure that the
  202.           shareware  principle  works  for  you.  If  you  are unable to
  203.           resolve a shareware-related problem  with  an  ASP  member  by
  204.           contacting  the  member directly, ASP may be able to help. The
  205.           ASP Ombudsman can help you resolve a dispute or  problem  with
  206.           an  ASP  member,  but  does  not provide technical support for
  207.           members' products. Please write to the ASP  Ombudsman  at  545
  208.           Grover  Road,  Muskegon, MI 49442 or send a CompuServe message
  209.           via CompuServe Mail to ASP Ombudsman 70007,3536."
  210.  
  211.  
  212.           DISTRIBUTION:  This product is the property of P. C  Softsmith
  213.           (c) 1991-2.     It  may  be  distributed  freely,  but  it  is
  214.           shareware.  If  you  use  it  to  produce  setup/installs  for
  215.           yourself  or  others,  please  send a letter with comments and
  216.           suggestions to P. C. Softsmith.  You do not have  to  register
  217.           TeleShare to  include it with your product.  However, you must
  218.           include this documentation with any and all  distributions  of
  219.           INSTALL,  and  you  may  not  charge  more  than  an 'industry
  220.           standard' distribution fee for shareware  distributors.    See
  221.           the    "History"   section   below   for   more   distribution
  222.           information.
  223.  
  224.           Support:
  225.  
  226.           Please contact us for TeleShare support and  sales  at  P.  C.
  227.           Softsmith by telephone (604) 433 - 5189 or at Suite 606 - 6455
  228.           Willingdon  Avenue,  Burnaby,  British  Columbia,  Canada, V5H
  229.           4E4.   Both  registered  and  soon  to  be  registered   users
  230.           currently  get  the  same  support  without any arbitrary time
  231.           limit.
  232.  
  233.           Internet and Compuserve users can also direct email to:
  234.  
  235.           vic_williams@mindlink.bc.ca
  236.  
  237.  
  238.           Your comments on the product will be appreciated.    Naturally
  239.           we all might expect ongoing changes in the product.
  240.  
  241.           History:
  242.  
  243.           This  install is a version of the installation program used to
  244.           install  the  FORCE  Xbase  compiler  (the  ONLY  native  code
  245.           producing  Xbase  compiler),  with portions Copyright (C) 1989
  246.           Sophco Inc.  The terms of the distribution agreement are  such
  247.           that  this  install program may only be distributed with P. C.
  248.           Softsmith products.  If you want to distribute it solely  with
  249.           your  product, please contact us and we will direct you to the
  250.  
  251.  
  252.  
  253.  
  254.  
  255.                The TeleShare Install manual                 Page 5
  256.  
  257.  
  258.           appropriate contact people.  In  mid  July  1993,  the  script
  259.           language  was added to the install program and the version was
  260.           upgraded from 1 to 2.
  261.  
  262.  
  263.           DISCLAIMER - AGREEMENT
  264.  
  265.           The documentation and associated software are distributed  and
  266.           sold  with no warranties, either express or implied, regarding
  267.           its merchantability or fitness for any particular purpose.  To
  268.           repeat, the author  disclaims  all  warranties,  expressed  or
  269.           implied,  including,  without  limitation,  the  warranties of
  270.           merchantability and of fitness for any purpose.    The  author
  271.           assumes  no  liability for damages, direct or conse- quential,
  272.           which may result from the use of the product with  or  without
  273.           registration.
  274.  
  275.           The  information  in  this  documentation is subject to change
  276.           without notice and does not represent  a  committment  on  the
  277.           part of the vendor.
  278.  
  279.  
  280.           THE  DOCUMENTATION AND ASSOCIATED SOFTWARE ARE DISTRIBUTED AND
  281.           SOLD WITH NO WARRANTIES, EITHER EXPRESS OR IMPLIED,  REGARDING
  282.           ITS  MERCHANTABILITY  OR  FITNESS  FOR ANY PARTICULAR PURPOSE.
  283.           THE INFORMATION IN THIS DOCUMENTATION  IS  SUBJECT  TO  CHANGE
  284.           WITHOUT  NOTICE  AND  DOES  NOT REPRESENT A COMMITTMENT ON THE
  285.           PART OF THE VENDOR.
  286.  
  287.           OTHER PRODUCT AND BRAND  NAMES  MENTIONED  ARE  TRADEMARKS  OR
  288.           REGISTERED    TRADEMARKS    OF   THEIR   RESPECTIVE   HOLDERS.
  289.           SPECIFICALLY  XBASE   IS   THE   GENERIC   DATABASE   INDUSTRY
  290.           REPLACEMENT  FOR  THE REGISTERED TERM 'DBASE' OWNED BY BORLAND
  291.           INTERNATIONAL.
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.